VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Processing.Analyzers Namespace / PropertyGetter<TTarget,TValue> Class / TryGetPropertyValue(TTarget,TValue) Method
Syntax Requirements SeeAlso
In This Topic
    TryGetPropertyValue(TTarget,TValue) Method (PropertyGetter<TTarget,TValue>)
    In This Topic
    Returns the property value.
    Syntax
    'Declaration
    
    Public MustOverride Function TryGetPropertyValue( _
    ByVal target
    The target object.
    As TTarget, _
    ByRef value
    The property value.
    As TValue _
    ) As Boolean
    public abstract bool TryGetPropertyValue(
    TTarget target,
    out TValue value
    )
    public: abstract bool TryGetPropertyValue(
    TTarget* target,
    [PARAMFLAG::Out] TValue* value
    )
    public:
    abstract bool TryGetPropertyValue(
    TTarget^ target,
    [Out] TValue^ value
    )

    Parameters

    target
    The target object.
    value
    The property value.

    Return Value

    True if property value is received; otherwise, false.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also